home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / ams__l~1.zoo / include / fnameext.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-05  |  670 b   |  20 lines

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  This file is part of the Atari Machine Specific Library,
  4. //  and is Copyright 1992 by Warwick W. Allison.
  5. //
  6. //  You are free to copy and modify these sources, provided you acknowledge
  7. //  the origin by retaining this notice, and adhere to the conditions
  8. //  described in the file COPYING.
  9. //
  10. //////////////////////////////////////////////////////////////////////////////
  11. #ifndef fnameext_h
  12. #define fnameext_h
  13.  
  14. char* basename(char* dest,const char*);
  15. char* directory(char* dest,const char*);
  16. char* extension(char* dest,const char*);
  17. char* noextension(char* dest,const char*);
  18.  
  19. #endif
  20.